Escalar un ReplicaSet en Kubernetes

Para escalar un ReplicaSet, podemos utilizar diferentes métodos:

kubectl replace -f replicaset-definition.yaml
kubectl scale --replicas=6 -f replicaset-definition.yaml
kubectl scale --replicas=6 replicaset myapp